home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 1 / BBS in a box - Trilogy I.iso / Files / Publish / Photoshop / Plug-in Modules / Code / Dissolve.r < prev    next >
Encoding:
Text File  |  1993-04-28  |  1.6 KB  |  87 lines  |  [TEXT/MPS ]

  1. /*
  2.     File: Dissolve.r
  3.  
  4.     Copyright 1990-91 by Thomas Knoll.
  5.     Copyright 1992-93 by Adobe Systems, Inc.
  6.  
  7.     Rez source file for Dissolve example.
  8. */
  9.  
  10. /* Plug-in module version number */
  11.  
  12. #include "PIGeneral.r"
  13.  
  14. resource 'PiMI' (16000, purgeable)
  15.     { latestFilterVersion,
  16.       latestFilterSubVersion,
  17.       0,
  18.       supportsGrayScale +
  19.           supportsRGBColor +
  20.         supportsCMYKColor +
  21.         supportsHSLColor +
  22.         supportsHSBColor +
  23.         supportsMultichannel +
  24.         supportsDuotone +
  25.         supportsLABColor,
  26.       '    ', /* No required host */
  27.       {},
  28.       { dontCopySourceToDestination }
  29.      };
  30.  
  31. /* About dialog box */
  32.  
  33. resource 'DLOG' (16000, purgeable)
  34.     {
  35.     {0, 0, 130, 240},
  36.     dBoxProc,
  37.     visible,
  38.     noGoAway,
  39.     0x0,
  40.     16000,
  41.     ""
  42.     };
  43.  
  44. resource 'DITL' (16000, purgeable)
  45.     {
  46.         {
  47.         {-80, 0, -60, 60},      Button { enabled, "Hidden" },
  48.         {0, 0, 155, 280},      UserItem { enabled },
  49.         {10, 10, 26, 230},      StaticText { disabled, "Dissolve" },
  50.         {36, 10, 52, 230},      StaticText { disabled, "© 1990-93 Adobe Systems, Inc." },
  51.         {62, 10, 110, 230},   StaticText { disabled, "An example plug-in filter "
  52.                                                      "module for Adobe Photoshop™." }
  53.         }
  54.     };
  55.  
  56. /* Parameters dialog box */
  57.  
  58. resource 'DLOG' (16001, purgeable)
  59.     {
  60.     {0, 0, 75, 230},
  61.     movableDBoxProc,
  62.     visible,
  63.     noGoAway,
  64.     0x0,
  65.     16001,
  66.     "Dissolve"
  67.     };
  68.  
  69. resource 'DITL' (16001, purgeable)
  70.     {
  71.         {
  72.         {15, 155, 35, 215},   Button { enabled, "OK" },
  73.         {45, 155, 65, 215},   Button { enabled, "Cancel" },
  74.         {0, 0, 0, 0},          UserItem { disabled },
  75.         {17, 80, 33, 110},      EditText { disabled, "" },
  76.         {17, 10, 33, 75},      StaticText { disabled, "Percent:" },
  77.         }
  78.     };
  79.  
  80. resource 'STR#' (16000, purgeable)
  81.     {
  82.         {
  83.         "Dissolve: "
  84.         }
  85.     };
  86.     
  87.